type net/http.http2FrameHeader

37 uses

	net/http (current package)
		h2_bundle.go#L1694: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
		h2_bundle.go#L1719: type http2FrameHeader struct {
		h2_bundle.go#L1743: func (h http2FrameHeader) Header() http2FrameHeader { return h }
		h2_bundle.go#L1745: func (h http2FrameHeader) String() string {
		h2_bundle.go#L1753: func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
		h2_bundle.go#L1780: func (h *http2FrameHeader) checkValid() {
		h2_bundle.go#L1786: func (h *http2FrameHeader) invalidate() { h.valid = false }
		h2_bundle.go#L1797: func http2invalidHTTP1LookingFrameHeader() http2FrameHeader {
		h2_bundle.go#L1804: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1810: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1813: 		return http2FrameHeader{}, err
		h2_bundle.go#L1815: 	return http2FrameHeader{
		h2_bundle.go#L1830: 	Header() http2FrameHeader
		h2_bundle.go#L2166: 	http2FrameHeader
		h2_bundle.go#L2183: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2298: 	http2FrameHeader
		h2_bundle.go#L2302: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2437: 	http2FrameHeader
		h2_bundle.go#L2443: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2470: 	http2FrameHeader
		h2_bundle.go#L2485: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2513: 	http2FrameHeader
		h2_bundle.go#L2527: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2534: 	http2FrameHeader
		h2_bundle.go#L2538: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2581: 	http2FrameHeader
		h2_bundle.go#L2606: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2723: 	http2FrameHeader
		h2_bundle.go#L2748: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2793: 	http2FrameHeader
		h2_bundle.go#L2797: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2825: 	http2FrameHeader
		h2_bundle.go#L2829: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2866: 	http2FrameHeader
		h2_bundle.go#L2880: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L4495: 			http2FrameHeader: http2FrameHeader{valid: true},